9252f14cf53c146aaf52862f298d67989874b41f,sonar-core/src/main/java/org/sonar/core/issue/IssueNotifications.java,IssueNotifications,sendChanges,#DefaultIssue#IssueChangeContext#Rule#Component#Component#,72
Before Change
public Notification sendChanges(DefaultIssue issue, IssueChangeContext context, Rule rule, Component project, @Nullable Component component) {
if (issue.diffs() != null) {
Notification notification = createNotification(issue, context, rule, project, component, null);
notificationsManager.scheduleForSending(notification);
return notification;
}
return null;
After Change
public Notification sendChanges(DefaultIssue issue, IssueChangeContext context, Rule rule, Component project, @Nullable Component component) {
Notification notification = createChangeNotification(issue, context, rule, project, component, null);
if (notification != null) {
notificationsManager.scheduleForSending(notification);
}
return notification;
}